home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / netconnect3 / cmanager / rexx / sendaweb.rexx < prev    next >
OS/2 REXX Batch file  |  1998-09-25  |  373b  |  22 lines

  1. /*
  2.  *      $VER: SendAWeb.rexx 1.0 (5.8.98)
  3.  */
  4.  
  5. parse arg '"'args'" "'BROWSER'"'
  6. options results
  7.  
  8. if show('P','AWEB.1') then do
  9.           address 'AWEB.1'
  10.           OPEN args
  11.           Exit
  12. end
  13.  
  14. ADDRESS COMMAND 'Run ' BROWSER
  15. ADDRESS COMMAND "SYS:RexxC/WaitForPort" 'AWEB.1'
  16.  
  17. if show('P','AWEB.1') then do
  18.           address 'AWEB.1'
  19.           OPEN args
  20.           Exit
  21. end
  22.